home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 2000 November / cd joystick no120 novembre 2000 cd 1.iso / data / demos / gunlok / data1.cab / Program_Executable_Files / scripts / molten_light.gsh < prev    next >
Text File  |  2000-08-22  |  954b  |  32 lines

  1. // defines molten metal light (in S3 level specifically or levels with lava etc.)
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_MOLTENLIGHT_GSH
  8. #define INCLUDED_MOLTENLIGHT_GSH
  9.  
  10. ////////////////////////////////////////////////////////////////////////////////////
  11.  
  12. light Lit_Moltenlight
  13. {
  14.     red             7
  15.     green           2
  16.     blue            0
  17.     specular red    1
  18.     specular green    0.25
  19.     specular blue    0
  20.     range           10
  21. }
  22.  
  23. role Rol_Moltenlight : Rol_PlacedObject
  24. {
  25.     light    Lit_Moltenlight
  26.     identifier "moltenlight"
  27. }
  28.  
  29. ////////////////////////////////////////////////////////////////////////////////////
  30.  
  31. // end wrapper - for preventing multiple or recursive inclusions
  32. #endif // !INCLUDED_MOLTENLIGHT_GSH